home *** CD-ROM | disk | FTP | other *** search
/ Win 50 Game+ Vol. 7 (Japan) / Win 50 Game+ Vol. 7 (Japan).7z / Win 50 Game+ Vol. 7 (Japan).bin / lha_file / sheep11_.lzh / SH11SRC.LZH / ABOUT.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-29  |  397b  |  30 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Comment: TLabel;
  15.   private
  16.     { Private ÉΘî╛ }
  17.   public
  18.     { Public ÉΘî╛ }
  19.   end;
  20.  
  21. var
  22.   AboutBox: TAboutBox;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.  
  30.